home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-10 | 983 b | 36 lines | [TEXT/MPS ] |
- #
- # Main makefile for PCCTS 1.31
- #
- # Terence Parr
- # Purdue University
- # March 1994
- #
- # this can be set to /user/local/bin etc...
- BINDIR=bin
- #CC=cc
-
- .SILENT:
-
- pccts:
- echo
- echo " Welcome to PCCTS 1.31 installation"
- echo " Released January 1, 1995"
- echo
- echo " Featuring"
- echo " ANTLR -- ANother Tool for Language Recognition"
- echo " DLG -- DFA-based Lexical Analyzer Generator"
- echo " C -- ANSI grammar with symbol table management"
- echo " Pascal -- ISO Pascal with symbol table management"
- echo " now including sample grammar files for C++ mode"
- echo
- #
- echo Making executables...
- (cd antlr; make -s)
- echo antlr executable now in $(BINDIR)
- (cd dlg; make -s)
- echo dlg executable now in $(BINDIR)
- (cd support/genmk; make -s; mv genmk ../../$(BINDIR))
- echo genmk executable now in $(BINDIR)
- echo
- echo " PCCTS 1.31 installation complete (have a nice day)"
-